home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Utilities Experience
/
The Utilities Experience - Volume 1.iso
/
software
/
graphics
/
n-z
/
raystorexa
/
arexx
/
title1.ray
< prev
next >
Wrap
Text File
|
1995-10-21
|
809b
|
46 lines
/***************
* NAME: title.ray
* VERSION: 1.0 21.07.1995
* DESCRIPTION: This ARexx-programm renders the RayStorm title
* AUTHORS: Andreas Heumann
* BUGS: none
* TO DO: none
* HISTORY: DATE NAME COMMENT
* 21.07.95 ah first release
***************/
signal on error
options results
IF ~show('P','RAYSTORM') THEN DO
address COMMAND 'run >NIL: <NIL: /RayStorm'
address COMMAND WaitForPort RAYSTORM
END
address RAYSTORM
'OBJECTPATH /objects'
'SETSCREEN 160 128'
'SETCAMERA <0,300,-500> <0,0,0> <0,1,0> 56.25 45'
'SETWORLD [0,0,0] [30,30,30]'
'POINTLIGHT <0,0,-700>'
'LOADOBJ title_light.iob'
'LOADOBJ title.iob'
'STARTRENDER'
'SAVEPIC title1.iff'
'CLEANUP'
exit 0
error:
say "Error" rc "in line" sigl ":"
GETERRORSTR rc
say result
exit 0